body {
  background-color: #150578;
  color: #ffffff;
  margin: 0;
  padding-top: 90px;
  overflow-x: hidden;
}
.navbar {
  background-color: #150578;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
.navbar-brand {
  color: #ffffff !important;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  width: 35px;
  height: 35px;
  border-radius: 8px;
}
.nav-icon {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #ffffff !important;
}
.navbar-nav .nav-link:hover .nav-icon {
  transform: scale(1.2);
  filter: brightness(1.3);
}
.navbar-nav .active {
  color: #ffffff !important;
}
.hero {
  background-color: rgba(120, 192, 224, 0.6);
  border-radius: 20px;
  width: 80%;
  margin: 10px auto;
  padding: 70px 20px;
  text-align: center;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: bold;
}
.hero p {
  font-size: 1.2rem;
  color: #ffffff;
}
.contact-container {
  background-color: rgba(120, 192, 224, 0.6);
  margin: 40px auto;
  padding: 40px 60px;
  border-radius: 15px;
  width: 85%;
  max-width: 1300px;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
label {
  font-weight: bold;
  margin-bottom: 5px;
  display: inline-block;
}
input, textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #150578;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
textarea {
  resize: vertical;
  min-height: 100px;
}
button {
  margin-top: 15px;
  width: 180px;
  padding: 12px;
  border-radius: 10px;
  background-color: rgba(120, 192, 224, 0.6);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
button:hover {
  background-color: #0033cc;
  transform: scale(1.05);
}
.contact-info {
  background-color: rgba(21, 5, 120, 0.6);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
.info-card {
  background-color: rgba(120, 192, 224, 0.3);
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 2px 0 8px rgba(0,0,0,0.4);
}
.info-card a {
  color: #ffffff;
  text-decoration: none;
}
.info-card a:hover {
  color: #99ccff;
  text-decoration: underline;
}
footer {
  background-color: rgba(0, 26, 102, 0.9);
  text-align: center;
  padding: 15px 0;
  width: 100%;
  color: #ffffff;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
  margin-top: 30px;
}
footer a {
  color: #99ccff;
  text-decoration: none;
  margin: 0 8px;
}
footer a:hover {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .contact-container {
    padding: 30px;
  }
  .hero {
    width: 90%;
    padding: 50px 15px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  button {
    width: 100%;
  }
}
.dm-serif-text-regular {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: normal;
}
.dm-serif-text-regular-italic {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: italic;
}